home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / pyshared / PIL / ImageGL.py < prev    next >
Text File  |  2006-12-03  |  530b  |  29 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id: ImageGL.py 2438 2005-05-25 21:09:48Z Fredrik $
  4. #
  5. # OpenGL pixmap/texture interface (requires imToolkit OpenGL extensions)
  6. #
  7. # History:
  8. # 2003-09-13 fl   Added
  9. #
  10. # Copyright (c) Secret Labs AB 2003.
  11. #
  12. # See the README file for information on usage and redistribution.
  13. #
  14.  
  15. ##
  16. # OpenGL pixmap/texture interface (requires imToolkit OpenGL
  17. # extensions.)
  18. ##
  19.  
  20. import _imaginggl
  21.  
  22. ##
  23. # Texture factory.
  24.  
  25. class TextureFactory:
  26.     pass # overwritten by the _imaginggl module
  27.  
  28. from _imaginggl import *
  29.